encoding/hex.dumper.used (field)

14 uses

	encoding/hex (current package)
		hex.go#L232: 	used       int  // number of bytes in the current line
		hex.go#L253: 		if h.used == 0 {
		hex.go#L271: 		if h.used == 7 {
		hex.go#L275: 		} else if h.used == 15 {
		hex.go#L287: 		h.rightChars[h.used] = toChar(data[i])
		hex.go#L288: 		h.used++
		hex.go#L290: 		if h.used == 16 {
		hex.go#L297: 			h.used = 0
		hex.go#L309: 	if h.used == 0 {
		hex.go#L317: 	nBytes := h.used
		hex.go#L318: 	for h.used < 16 {
		hex.go#L320: 		if h.used == 7 {
		hex.go#L322: 		} else if h.used == 15 {
		hex.go#L329: 		h.used++